home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / MENGER.ZIP / menger / example1.pov next >
Encoding:
Text File  |  1997-08-17  |  387 b   |  34 lines

  1. #include "colors.inc"
  2. #global_settings
  3. {
  4.  assumed_gamma 1.0
  5. }
  6.  
  7.  
  8.  
  9. light_source { <50 , 20, 10> color White }
  10. light_source { <-50 , -20, 10> color White }
  11.  
  12. camera {
  13.   up y
  14.   right 4/3*x
  15.   direction 2*z
  16.   location <2 , 2, 3>
  17.   look_at  <0 , 0, 0>
  18. }
  19.  
  20. #declare MENGER_DEPTH = 3
  21. #include "menger.inc"
  22.  
  23. object {
  24.    MENGER_OBJECT
  25.    pigment {color Red}
  26. }
  27.  
  28.  
  29. background{color NewMidnightBlue}
  30.  
  31.  
  32.  
  33.  
  34.